home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / falcon / nt_dsp1.lzh / NT_DSP1.MSA / FLTS / IIR4.ASM < prev    next >
Encoding:
Assembly Source File  |  1989-01-24  |  731 b   |  19 lines

  1. ;
  2. ; This program originally available on the Motorola DSP bulletin board.
  3. ; It is provided under a DISCLAIMER OF WARRANTY available from
  4. ; Motorola DSP Operation, 6501 Wm. Cannon Drive W., Austin, Tx., 78735.
  5. ; Last Update 15 Jul 87   Version 1.0
  6. ;
  7.                                                                                                                                
  8. iir4    macro
  9. iir4    ident   1,0
  10. ;
  11. ;       IIR4 - Implements biquad filter
  12. ;
  13.         move    x:(r0)+,x0  y:(r4)+,y0  ;s1,a1
  14.         mac     x0,y0,a  x:(r0),x1  y:(r4)+,y0  ;s2, a2
  15.         macr    x1,y0,a  x0,x:(r0)- y:(r4)+,y0  ;new s2, get b1
  16.         mac     x0,y0,a  a,x:(r0)   y:(r4)+,y0  ;new s1, get b2
  17.         macr    x1,y0,a
  18.